unset($foo[0]); // remove item at index 0 $foo2 = array_values($foo); // 'reindex' array
foreach($input as &$val) { $val = array_values($val); }